home *** CD-ROM | disk | FTP | other *** search
/ ADA Programming Guide / ADA Programming Guide.iso / ada_gnu / adainc / s-os2err.ads < prev    next >
Text File  |  1996-01-30  |  36KB  |  648 lines

  1. ------------------------------------------------------------------------------
  2. --                                                                          --
  3. --                 GNU ADA RUNTIME LIBRARY (GNARL) COMPONENTS               --
  4. --                                                                          --
  5. --                  S Y S T E M . O S 2 L I B . E R R O R S                 --
  6. --                                                                          --
  7. --                                  S p e c                                 --
  8. --                                                                          --
  9. --                             $Revision: 1.2 $                             --
  10. --                                                                          --
  11. --             Copyright (c) 1993,1994 NYU, All Rights Reserved             --
  12. --                                                                          --
  13. --  GNARL is free software; you can redistribute it and/or modify it  under --
  14. --  terms  of  the  GNU  Library General Public License as published by the --
  15. --  Free Software Foundation; either version 2,  or (at  your  option)  any --
  16. --  later  version.   GNARL is distributed in the hope that it will be use- --
  17. --  ful, but but WITHOUT ANY WARRANTY; without even the implied warranty of --
  18. --  MERCHANTABILITY  or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU Gen- --
  19. --  eral Library Public License for more details.  You should have received --
  20. --  a  copy of the GNU Library General Public License along with GNARL; see --
  21. --  file COPYING. If not, write to the Free Software Foundation,  675  Mass --
  22. --  Ave, Cambridge, MA 02139, USA.                                          --
  23. --                                                                          --
  24. ------------------------------------------------------------------------------
  25.  
  26. --  Definition of values for OS/2 error returns
  27.  
  28. package System.OS2Lib.Errors is
  29. pragma Preelaborate (Errors);
  30.  
  31.    NO_ERROR                        : constant :=     0;
  32.    ERROR_INVALID_FUNCTION          : constant :=     1;
  33.    ERROR_FILE_NOT_FOUND            : constant :=     2;
  34.    ERROR_PATH_NOT_FOUND            : constant :=     3;
  35.    ERROR_TOO_MANY_OPEN_FILES       : constant :=     4;
  36.    ERROR_ACCESS_DENIED             : constant :=     5;
  37.    ERROR_INVALID_HANDLE            : constant :=     6;
  38.    ERROR_ARENA_TRASHED             : constant :=     7;
  39.    ERROR_NOT_ENOUGH_MEMORY         : constant :=     8;
  40.    ERROR_INVALID_BLOCK             : constant :=     9;
  41.    ERROR_BAD_ENVIRONMENT           : constant :=    10;
  42.    ERROR_BAD_FORMAT                : constant :=    11;
  43.    ERROR_INVALID_ACCESS            : constant :=    12;
  44.    ERROR_INVALID_DATA              : constant :=    13;
  45.    ERROR_INVALID_DRIVE             : constant :=    15;
  46.    ERROR_CURRENT_DIRECTORY         : constant :=    16;
  47.    ERROR_NOT_SAME_DEVICE           : constant :=    17;
  48.    ERROR_NO_MORE_FILES             : constant :=    18;
  49.    ERROR_WRITE_PROTECT             : constant :=    19;
  50.    ERROR_BAD_UNIT                  : constant :=    20;
  51.    ERROR_NOT_READY                 : constant :=    21;
  52.    ERROR_BAD_COMMAND               : constant :=    22;
  53.    ERROR_CRC                       : constant :=    23;
  54.    ERROR_BAD_LENGTH                : constant :=    24;
  55.    ERROR_SEEK                      : constant :=    25;
  56.    ERROR_NOT_DOS_DISK              : constant :=    26;
  57.    ERROR_SECTOR_NOT_FOUND          : constant :=    27;
  58.    ERROR_OUT_OF_PAPER              : constant :=    28;
  59.    ERROR_WRITE_FAULT               : constant :=    29;
  60.    ERROR_READ_FAULT                : constant :=    30;
  61.    ERROR_GEN_FAILURE               : constant :=    31;
  62.    ERROR_SHARING_VIOLATION         : constant :=    32;
  63.    ERROR_LOCK_VIOLATION            : constant :=    33;
  64.    ERROR_WRONG_DISK                : constant :=    34;
  65.    ERROR_FCB_UNAVAILABLE           : constant :=    35;
  66.    ERROR_SHARING_BUFFER_EXCEEDED   : constant :=    36;
  67.    ERROR_CODE_PAGE_MISMATCHED      : constant :=    37;
  68.    ERROR_HANDLE_EOF                : constant :=    38;
  69.    ERROR_HANDLE_DISK_FULL          : constant :=    39;
  70.    ERROR_NOT_SUPPORTED             : constant :=    50;
  71.    ERROR_REM_NOT_LIST              : constant :=    51;
  72.    ERROR_DUP_NAME                  : constant :=    52;
  73.    ERROR_BAD_NETPATH               : constant :=    53;
  74.    ERROR_NETWORK_BUSY              : constant :=    54;
  75.    ERROR_DEV_NOT_EXIST             : constant :=    55;
  76.    ERROR_TOO_MANY_CMDS             : constant :=    56;
  77.    ERROR_ADAP_HDW_ERR              : constant :=    57;
  78.    ERROR_BAD_NET_RESP              : constant :=    58;
  79.    ERROR_UNEXP_NET_ERR             : constant :=    59;
  80.    ERROR_BAD_REM_ADAP              : constant :=    60;
  81.    ERROR_PRINTQ_FULL               : constant :=    61;
  82.    ERROR_NO_SPOOL_SPACE            : constant :=    62;
  83.    ERROR_PRINT_CANCELLED           : constant :=    63;
  84.    ERROR_NETNAME_DELETED           : constant :=    64;
  85.    ERROR_NETWORK_ACCESS_DENIED     : constant :=    65;
  86.    ERROR_BAD_DEV_TYPE              : constant :=    66;
  87.    ERROR_BAD_NET_NAME              : constant :=    67;
  88.    ERROR_TOO_MANY_NAMES            : constant :=    68;
  89.    ERROR_TOO_MANY_SESS             : constant :=    69;
  90.    ERROR_SHARING_PAUSED            : constant :=    70;
  91.    ERROR_REQ_NOT_ACCEP             : constant :=    71;
  92.    ERROR_REDIR_PAUSED              : constant :=    72;
  93.    ERROR_SBCS_ATT_WRITE_PROT       : constant :=    73;
  94.    ERROR_SBCS_GENERAL_FAILURE      : constant :=    74;
  95.    ERROR_XGA_OUT_MEMORY            : constant :=    75;
  96.    ERROR_FILE_EXISTS               : constant :=    80;
  97.    ERROR_DUP_FCB                   : constant :=    81;
  98.    ERROR_CANNOT_MAKE               : constant :=    82;
  99.    ERROR_FAIL_I24                  : constant :=    83;
  100.    ERROR_OUT_OF_STRUCTURES         : constant :=    84;
  101.    ERROR_ALREADY_ASSIGNED          : constant :=    85;
  102.    ERROR_INVALID_PASSWORD          : constant :=    86;
  103.    ERROR_INVALID_PARAMETER         : constant :=    87;
  104.    ERROR_NET_WRITE_FAULT           : constant :=    88;
  105.    ERROR_NO_PROC_SLOTS             : constant :=    89;
  106.    ERROR_NOT_FROZEN                : constant :=    90;
  107.    ERROR_SYS_COMP_NOT_LOADED       : constant :=    90;
  108.    ERR_TSTOVFL                     : constant :=    91;
  109.    ERR_TSTDUP                      : constant :=    92;
  110.    ERROR_NO_ITEMS                  : constant :=    93;
  111.    ERROR_INTERRUPT                 : constant :=    95;
  112.    ERROR_DEVICE_IN_USE             : constant :=    99;
  113.    ERROR_TOO_MANY_SEMAPHORES       : constant :=   100;
  114.    ERROR_EXCL_SEM_ALREADY_OWNED    : constant :=   101;
  115.    ERROR_SEM_IS_SET                : constant :=   102;
  116.    ERROR_TOO_MANY_SEM_REQUESTS     : constant :=   103;
  117.    ERROR_INVALID_AT_INTERRUPT_TIME : constant :=   104;
  118.    ERROR_SEM_OWNER_DIED            : constant :=   105;
  119.    ERROR_SEM_USER_LIMIT            : constant :=   106;
  120.    ERROR_DISK_CHANGE               : constant :=   107;
  121.    ERROR_DRIVE_LOCKED              : constant :=   108;
  122.    ERROR_BROKEN_PIPE               : constant :=   109;
  123.    ERROR_OPEN_FAILED               : constant :=   110;
  124.    ERROR_BUFFER_OVERFLOW           : constant :=   111;
  125.    ERROR_DISK_FULL                 : constant :=   112;
  126.    ERROR_NO_MORE_SEARCH_HANDLES    : constant :=   113;
  127.    ERROR_INVALID_TARGET_HANDLE     : constant :=   114;
  128.    ERROR_PROTECTION_VIOLATION      : constant :=   115;
  129.    ERROR_VIOKBD_REQUEST            : constant :=   116;
  130.    ERROR_INVALID_CATEGORY          : constant :=   117;
  131.    ERROR_INVALID_VERIFY_SWITCH     : constant :=   118;
  132.    ERROR_BAD_DRIVER_LEVEL          : constant :=   119;
  133.    ERROR_CALL_NOT_IMPLEMENTED      : constant :=   120;
  134.    ERROR_SEM_TIMEOUT               : constant :=   121;
  135.    ERROR_INSUFFICIENT_BUFFER       : constant :=   122;
  136.    ERROR_INVALID_NAME              : constant :=   123;
  137.    ERROR_INVALID_LEVEL             : constant :=   124;
  138.    ERROR_NO_VOLUME_LABEL           : constant :=   125;
  139.    ERROR_MOD_NOT_FOUND             : constant :=   126;
  140.    ERROR_PROC_NOT_FOUND            : constant :=   127;
  141.    ERROR_WAIT_NO_CHILDREN          : constant :=   128;
  142.    ERROR_CHILD_NOT_COMPLETE        : constant :=   129;
  143.    ERROR_DIRECT_ACCESS_HANDLE      : constant :=   130;
  144.    ERROR_NEGATIVE_SEEK             : constant :=   131;
  145.    ERROR_SEEK_ON_DEVICE            : constant :=   132;
  146.    ERROR_IS_JOIN_TARGET            : constant :=   133;
  147.    ERROR_IS_JOINED                 : constant :=   134;
  148.    ERROR_IS_SUBSTED                : constant :=   135;
  149.    ERROR_NOT_JOINED                : constant :=   136;
  150.    ERROR_NOT_SUBSTED               : constant :=   137;
  151.    ERROR_JOIN_TO_JOIN              : constant :=   138;
  152.    ERROR_SUBST_TO_SUBST            : constant :=   139;
  153.    ERROR_JOIN_TO_SUBST             : constant :=   140;
  154.    ERROR_SUBST_TO_JOIN             : constant :=   141;
  155.    ERROR_BUSY_DRIVE                : constant :=   142;
  156.    ERROR_SAME_DRIVE                : constant :=   143;
  157.    ERROR_DIR_NOT_ROOT              : constant :=   144;
  158.    ERROR_DIR_NOT_EMPTY             : constant :=   145;
  159.    ERROR_IS_SUBST_PATH             : constant :=   146;
  160.    ERROR_IS_JOIN_PATH              : constant :=   147;
  161.    ERROR_PATH_BUSY                 : constant :=   148;
  162.    ERROR_IS_SUBST_TARGET           : constant :=   149;
  163.    ERROR_SYSTEM_TRACE              : constant :=   150;
  164.    ERROR_INVALID_EVENT_COUNT       : constant :=   151;
  165.    ERROR_TOO_MANY_MUXWAITERS       : constant :=   152;
  166.    ERROR_INVALID_LIST_FORMAT       : constant :=   153;
  167.    ERROR_LABEL_TOO_LONG            : constant :=   154;
  168.    ERROR_TOO_MANY_TCBS             : constant :=   155;
  169.    ERROR_SIGNAL_REFUSED            : constant :=   156;
  170.    ERROR_DISCARDED                 : constant :=   157;
  171.    ERROR_NOT_LOCKED                : constant :=   158;
  172.    ERROR_BAD_THREADID_ADDR         : constant :=   159;
  173.    ERROR_BAD_ARGUMENTS             : constant :=   160;
  174.    ERROR_BAD_PATHNAME              : constant :=   161;
  175.    ERROR_SIGNAL_PENDING            : constant :=   162;
  176.    ERROR_UNCERTAIN_MEDIA           : constant :=   163;
  177.    ERROR_MAX_THRDS_REACHED         : constant :=   164;
  178.    ERROR_MONITORS_NOT_SUPPORTED    : constant :=   165;
  179.    ERROR_UNC_DRIVER_NOT_INSTALLED  : constant :=   166;
  180.    ERROR_LOCK_FAILED               : constant :=   167;
  181.    ERROR_SWAPIO_FAILED             : constant :=   168;
  182.    ERROR_SWAPIN_FAILED             : constant :=   169;
  183.    ERROR_BUSY                      : constant :=   170;
  184.    ERROR_CANCEL_VIOLATION          : constant :=   173;
  185.    ERROR_ATOMIC_LOCK_NOT_SUPPORTED : constant :=   174;
  186.    ERROR_READ_LOCKS_NOT_SUPPORTED  : constant :=   175;
  187.    ERROR_INVALID_SEGMENT_NUMBER    : constant :=   180;
  188.    ERROR_INVALID_CALLGATE          : constant :=   181;
  189.    ERROR_INVALID_ORDINAL           : constant :=   182;
  190.    ERROR_ALREADY_EXISTS            : constant :=   183;
  191.    ERROR_NO_CHILD_PROCESS          : constant :=   184;
  192.    ERROR_CHILD_ALIVE_NOWAIT        : constant :=   185;
  193.    ERROR_INVALID_FLAG_NUMBER       : constant :=   186;
  194.    ERROR_SEM_NOT_FOUND             : constant :=   187;
  195.    ERROR_INVALID_STARTING_CODESEG  : constant :=   188;
  196.    ERROR_INVALID_STACKSEG          : constant :=   189;
  197.    ERROR_INVALID_MODULETYPE        : constant :=   190;
  198.    ERROR_INVALID_EXE_SIGNATURE     : constant :=   191;
  199.    ERROR_EXE_MARKED_INVALID        : constant :=   192;
  200.    ERROR_BAD_EXE_FORMAT            : constant :=   193;
  201.    ERROR_ITERATED_DATA_EXCEEDS_64k : constant :=   194;
  202.    ERROR_INVALID_MINALLOCSIZE      : constant :=   195;
  203.    ERROR_DYNLINK_FROM_INVALID_RING : constant :=   196;
  204.    ERROR_IOPL_NOT_ENABLED          : constant :=   197;
  205.    ERROR_INVALID_SEGDPL            : constant :=   198;
  206.    ERROR_AUTODATASEG_EXCEEDS_64k   : constant :=   199;
  207.    ERROR_RING2SEG_MUST_BE_MOVABLE  : constant :=   200;
  208.    ERROR_RELOC_CHAIN_XEEDS_SEGLIM  : constant :=   201;
  209.    ERROR_INFLOOP_IN_RELOC_CHAIN    : constant :=   202;
  210.    ERROR_ENVVAR_NOT_FOUND          : constant :=   203;
  211.    ERROR_NOT_CURRENT_CTRY          : constant :=   204;
  212.    ERROR_NO_SIGNAL_SENT            : constant :=   205;
  213.    ERROR_FILENAME_EXCED_RANGE      : constant :=   206;
  214.    ERROR_RING2_STACK_IN_USE        : constant :=   207;
  215.    ERROR_META_EXPANSION_TOO_LONG   : constant :=   208;
  216.    ERROR_INVALID_SIGNAL_NUMBER     : constant :=   209;
  217.    ERROR_THREAD_1_INACTIVE         : constant :=   210;
  218.    ERROR_INFO_NOT_AVAIL            : constant :=   211;
  219.    ERROR_LOCKED                    : constant :=   212;
  220.    ERROR_BAD_DYNALINK              : constant :=   213;
  221.    ERROR_TOO_MANY_MODULES          : constant :=   214;
  222.    ERROR_NESTING_NOT_ALLOWED       : constant :=   215;
  223.    ERROR_CANNOT_SHRINK             : constant :=   216;
  224.    ERROR_ZOMBIE_PROCESS            : constant :=   217;
  225.    ERROR_STACK_IN_HIGH_MEMORY      : constant :=   218;
  226.    ERROR_INVALID_EXITROUTINE_RING  : constant :=   219;
  227.    ERROR_GETBUF_FAILED             : constant :=   220;
  228.    ERROR_FLUSHBUF_FAILED           : constant :=   221;
  229.    ERROR_TRANSFER_TOO_LONG         : constant :=   222;
  230.    ERROR_FORCENOSWAP_FAILED        : constant :=   223;
  231.    ERROR_SMG_NO_TARGET_WINDOW      : constant :=   224;
  232.    ERROR_NO_CHILDREN               : constant :=   228;
  233.    ERROR_INVALID_SCREEN_GROUP      : constant :=   229;
  234.    ERROR_BAD_PIPE                  : constant :=   230;
  235.    ERROR_PIPE_BUSY                 : constant :=   231;
  236.    ERROR_NO_DATA                   : constant :=   232;
  237.    ERROR_PIPE_NOT_CONNECTED        : constant :=   233;
  238.    ERROR_MORE_DATA                 : constant :=   234;
  239.    ERROR_VC_DISCONNECTED           : constant :=   240;
  240.    ERROR_CIRCULARITY_REQUESTED     : constant :=   250;
  241.    ERROR_DIRECTORY_IN_CDS          : constant :=   251;
  242.    ERROR_INVALID_FSD_NAME          : constant :=   252;
  243.    ERROR_INVALID_PATH              : constant :=   253;
  244.    ERROR_INVALID_EA_NAME           : constant :=   254;
  245.    ERROR_EA_LIST_INCONSISTENT      : constant :=   255;
  246.    ERROR_EA_LIST_TOO_LONG          : constant :=   256;
  247.    ERROR_NO_META_MATCH             : constant :=   257;
  248.    ERROR_FINDNOTIFY_TIMEOUT        : constant :=   258;
  249.    ERROR_NO_MORE_ITEMS             : constant :=   259;
  250.    ERROR_SEARCH_STRUC_REUSED       : constant :=   260;
  251.    ERROR_CHAR_NOT_FOUND            : constant :=   261;
  252.    ERROR_TOO_MUCH_STACK            : constant :=   262;
  253.    ERROR_INVALID_ATTR              : constant :=   263;
  254.    ERROR_INVALID_STARTING_RING     : constant :=   264;
  255.    ERROR_INVALID_DLL_INIT_RING     : constant :=   265;
  256.    ERROR_CANNOT_COPY               : constant :=   266;
  257.    ERROR_DIRECTORY                 : constant :=   267;
  258.    ERROR_OPLOCKED_FILE             : constant :=   268;
  259.    ERROR_OPLOCK_THREAD_EXISTS      : constant :=   269;
  260.    ERROR_VOLUME_CHANGED            : constant :=   270;
  261.    ERROR_FINDNOTIFY_HANDLE_IN_USE  : constant :=   271;
  262.    ERROR_FINDNOTIFY_HANDLE_CLOSED  : constant :=   272;
  263.    ERROR_NOTIFY_OBJECT_REMOVED     : constant :=   273;
  264.    ERROR_ALREADY_SHUTDOWN          : constant :=   274;
  265.    ERROR_EAS_DIDNT_FIT             : constant :=   275;
  266.    ERROR_EA_FILE_CORRUPT           : constant :=   276;
  267.    ERROR_EA_TABLE_FULL             : constant :=   277;
  268.    ERROR_INVALID_EA_HANDLE         : constant :=   278;
  269.    ERROR_NO_CLUSTER                : constant :=   279;
  270.    ERROR_CREATE_EA_FILE            : constant :=   280;
  271.    ERROR_CANNOT_OPEN_EA_FILE       : constant :=   281;
  272.    ERROR_EAS_NOT_SUPPORTED         : constant :=   282;
  273.    ERROR_NEED_EAS_FOUND            : constant :=   283;
  274.    ERROR_DUPLICATE_HANDLE          : constant :=   284;
  275.    ERROR_DUPLICATE_NAME            : constant :=   285;
  276.    ERROR_EMPTY_MUXWAIT             : constant :=   286;
  277.    ERROR_MUTEX_OWNED               : constant :=   287;
  278.    ERROR_NOT_OWNER                 : constant :=   288;
  279.    ERROR_PARAM_TOO_SMALL           : constant :=   289;
  280.    ERROR_TOO_MANY_HANDLES          : constant :=   290;
  281.    ERROR_TOO_MANY_OPENS            : constant :=   291;
  282.    ERROR_WRONG_TYPE                : constant :=   292;
  283.    ERROR_UNUSED_CODE               : constant :=   293;
  284.    ERROR_THREAD_NOT_TERMINATED     : constant :=   294;
  285.    ERROR_INIT_ROUTINE_FAILED       : constant :=   295;
  286.    ERROR_MODULE_IN_USE             : constant :=   296;
  287.    ERROR_NOT_ENOUGH_WATCHPOINTS    : constant :=   297;
  288.    ERROR_TOO_MANY_POSTS            : constant :=   298;
  289.    ERROR_ALREADY_POSTED            : constant :=   299;
  290.    ERROR_ALREADY_RESET             : constant :=   300;
  291.    ERROR_SEM_BUSY                  : constant :=   301;
  292.    ERROR_INVALID_PROCID            : constant :=   303;
  293.    ERROR_INVALID_PDELTA            : constant :=   304;
  294.    ERROR_NOT_DESCENDANT            : constant :=   305;
  295.    ERROR_NOT_SESSION_MANAGER       : constant :=   306;
  296.    ERROR_INVALID_PCLASS            : constant :=   307;
  297.    ERROR_INVALID_SCOPE             : constant :=   308;
  298.    ERROR_INVALID_THREADID          : constant :=   309;
  299.    ERROR_DOSSUB_SHRINK             : constant :=   310;
  300.    ERROR_DOSSUB_NOMEM              : constant :=   311;
  301.    ERROR_DOSSUB_OVERLAP            : constant :=   312;
  302.    ERROR_DOSSUB_BADSIZE            : constant :=   313;
  303.    ERROR_DOSSUB_BADFLAG            : constant :=   314;
  304.    ERROR_DOSSUB_BADSELECTOR        : constant :=   315;
  305.    ERROR_MR_MSG_TOO_LONG           : constant :=   316;
  306.    MGS_MR_MSG_TOO_LONG             : constant :=   316;
  307.    ERROR_MR_MID_NOT_FOUND          : constant :=   317;
  308.    ERROR_MR_UN_ACC_MSGF            : constant :=   318;
  309.    ERROR_MR_INV_MSGF_FORMAT        : constant :=   319;
  310.    ERROR_MR_INV_IVCOUNT            : constant :=   320;
  311.    ERROR_MR_UN_PERFORM             : constant :=   321;
  312.    ERROR_TS_WAKEUP                 : constant :=   322;
  313.    ERROR_TS_SEMHANDLE              : constant :=   323;
  314.    ERROR_TS_NOTIMER                : constant :=   324;
  315.    ERROR_TS_HANDLE                 : constant :=   326;
  316.    ERROR_TS_DATETIME               : constant :=   327;
  317.    ERROR_SYS_INTERNAL              : constant :=   328;
  318.    ERROR_QUE_CURRENT_NAME          : constant :=   329;
  319.    ERROR_QUE_PROC_NOT_OWNED        : constant :=   330;
  320.    ERROR_QUE_PROC_OWNED            : constant :=   331;
  321.    ERROR_QUE_DUPLICATE             : constant :=   332;
  322.    ERROR_QUE_ELEMENT_NOT_EXIST     : constant :=   333;
  323.    ERROR_QUE_NO_MEMORY             : constant :=   334;
  324.    ERROR_QUE_INVALID_NAME          : constant :=   335;
  325.    ERROR_QUE_INVALID_PRIORITY      : constant :=   336;
  326.    ERROR_QUE_INVALID_HANDLE        : constant :=   337;
  327.    ERROR_QUE_LINK_NOT_FOUND        : constant :=   338;
  328.    ERROR_QUE_MEMORY_ERROR          : constant :=   339;
  329.    ERROR_QUE_PREV_AT_END           : constant :=   340;
  330.    ERROR_QUE_PROC_NO_ACCESS        : constant :=   341;
  331.    ERROR_QUE_EMPTY                 : constant :=   342;
  332.    ERROR_QUE_NAME_NOT_EXIST        : constant :=   343;
  333.    ERROR_QUE_NOT_INITIALIZED       : constant :=   344;
  334.    ERROR_QUE_UNABLE_TO_ACCESS      : constant :=   345;
  335.    ERROR_QUE_UNABLE_TO_ADD         : constant :=   346;
  336.    ERROR_QUE_UNABLE_TO_INIT        : constant :=   347;
  337.    ERROR_VIO_INVALID_MASK          : constant :=   349;
  338.    ERROR_VIO_PTR                   : constant :=   350;
  339.    ERROR_VIO_APTR                  : constant :=   351;
  340.    ERROR_VIO_RPTR                  : constant :=   352;
  341.    ERROR_VIO_CPTR                  : constant :=   353;
  342.    ERROR_VIO_LPTR                  : constant :=   354;
  343.    ERROR_VIO_MODE                  : constant :=   355;
  344.    ERROR_VIO_WIDTH                 : constant :=   356;
  345.    ERROR_VIO_ATTR                  : constant :=   357;
  346.    ERROR_VIO_ROW                   : constant :=   358;
  347.    ERROR_VIO_COL                   : constant :=   359;
  348.    ERROR_VIO_TOPROW                : constant :=   360;
  349.    ERROR_VIO_BOTROW                : constant :=   361;
  350.    ERROR_VIO_RIGHTCOL              : constant :=   362;
  351.    ERROR_VIO_LEFTCOL               : constant :=   363;
  352.    ERROR_SCS_CALL                  : constant :=   364;
  353.    ERROR_SCS_VALUE                 : constant :=   365;
  354.    ERROR_VIO_WAIT_FLAG             : constant :=   366;
  355.    ERROR_VIO_UNLOCK                : constant :=   367;
  356.    ERROR_SGS_NOT_SESSION_MGR       : constant :=   368;
  357.    ERROR_SMG_INVALID_SGID          : constant :=   369;
  358.    ERROR_SMG_INVALID_SESSION_ID    : constant :=   369;
  359.    ERROR_SMG_NOSG                  : constant :=   370;
  360.    ERROR_SMG_NO_SESSIONS           : constant :=   370;
  361.    ERROR_SMG_GRP_NOT_FOUND         : constant :=   371;
  362.    ERROR_SMG_SESSION_NOT_FOUND     : constant :=   371;
  363.    ERROR_SMG_SET_TITLE             : constant :=   372;
  364.    ERROR_KBD_PARAMETER             : constant :=   373;
  365.    ERROR_KBD_NO_DEVICE             : constant :=   374;
  366.    ERROR_KBD_INVALID_IOWAIT        : constant :=   375;
  367.    ERROR_KBD_INVALID_LENGTH        : constant :=   376;
  368.    ERROR_KBD_INVALID_ECHO_MASK     : constant :=   377;
  369.    ERROR_KBD_INVALID_INPUT_MASK    : constant :=   378;
  370.    ERROR_MON_INVALID_PARMS         : constant :=   379;
  371.    ERROR_MON_INVALID_DEVNAME       : constant :=   380;
  372.    ERROR_MON_INVALID_HANDLE        : constant :=   381;
  373.    ERROR_MON_BUFFER_TOO_SMALL      : constant :=   382;
  374.    ERROR_MON_BUFFER_EMPTY          : constant :=   383;
  375.    ERROR_MON_DATA_TOO_LARGE        : constant :=   384;
  376.    ERROR_MOUSE_NO_DEVICE           : constant :=   385;
  377.    ERROR_MOUSE_INV_HANDLE          : constant :=   386;
  378.    ERROR_MOUSE_INV_PARMS           : constant :=   387;
  379.    ERROR_MOUSE_CANT_RESET          : constant :=   388;
  380.    ERROR_MOUSE_DISPLAY_PARMS       : constant :=   389;
  381.    ERROR_MOUSE_INV_MODULE          : constant :=   390;
  382.    ERROR_MOUSE_INV_ENTRY_PT        : constant :=   391;
  383.    ERROR_MOUSE_INV_MASK            : constant :=   392;
  384.    NO_ERROR_MOUSE_NO_DATA          : constant :=   393;
  385.    NO_ERROR_MOUSE_PTR_DRAWN        : constant :=   394;
  386.    ERROR_INVALID_FREQUENCY         : constant :=   395;
  387.    ERROR_NLS_NO_COUNTRY_FILE       : constant :=   396;
  388.    ERROR_NLS_OPEN_FAILED           : constant :=   397;
  389.    ERROR_NLS_NO_CTRY_CODE          : constant :=   398;
  390.    ERROR_NO_COUNTRY_OR_CODEPAGE    : constant :=   398;
  391.    ERROR_NLS_TABLE_TRUNCATED       : constant :=   399;
  392.    ERROR_NLS_BAD_TYPE              : constant :=   400;
  393.    ERROR_NLS_TYPE_NOT_FOUND        : constant :=   401;
  394.    ERROR_VIO_SMG_ONLY              : constant :=   402;
  395.    ERROR_VIO_INVALID_ASCIIZ        : constant :=   403;
  396.    ERROR_VIO_DEREGISTER            : constant :=   404;
  397.    ERROR_VIO_NO_POPUP              : constant :=   405;
  398.    ERROR_VIO_EXISTING_POPUP        : constant :=   406;
  399.    ERROR_KBD_SMG_ONLY              : constant :=   407;
  400.    ERROR_KBD_INVALID_ASCIIZ        : constant :=   408;
  401.    ERROR_KBD_INVALID_MASK          : constant :=   409;
  402.    ERROR_KBD_REGISTER              : constant :=   410;
  403.    ERROR_KBD_DEREGISTER            : constant :=   411;
  404.    ERROR_MOUSE_SMG_ONLY            : constant :=   412;
  405.    ERROR_MOUSE_INVALID_ASCIIZ      : constant :=   413;
  406.    ERROR_MOUSE_INVALID_MASK        : constant :=   414;
  407.    ERROR_MOUSE_REGISTER            : constant :=   415;
  408.    ERROR_MOUSE_DEREGISTER          : constant :=   416;
  409.    ERROR_SMG_BAD_ACTION            : constant :=   417;
  410.    ERROR_SMG_INVALID_CALL          : constant :=   418;
  411.    ERROR_SCS_SG_NOTFOUND           : constant :=   419;
  412.    ERROR_SCS_NOT_SHELL             : constant :=   420;
  413.    ERROR_VIO_INVALID_PARMS         : constant :=   421;
  414.    ERROR_VIO_FUNCTION_OWNED        : constant :=   422;
  415.    ERROR_VIO_RETURN                : constant :=   423;
  416.    ERROR_SCS_INVALID_FUNCTION      : constant :=   424;
  417.    ERROR_SCS_NOT_SESSION_MGR       : constant :=   425;
  418.    ERROR_VIO_REGISTER              : constant :=   426;
  419.    ERROR_VIO_NO_MODE_THREAD        : constant :=   427;
  420.    ERROR_VIO_NO_SAVE_RESTORE_THD   : constant :=   428;
  421.    ERROR_VIO_IN_BG                 : constant :=   429;
  422.    ERROR_VIO_ILLEGAL_DURING_POPUP  : constant :=   430;
  423.    ERROR_SMG_NOT_BASESHELL         : constant :=   431;
  424.    ERROR_SMG_BAD_STATUSREQ         : constant :=   432;
  425.    ERROR_QUE_INVALID_WAIT          : constant :=   433;
  426.    ERROR_VIO_LOCK                  : constant :=   434;
  427.    ERROR_MOUSE_INVALID_IOWAIT      : constant :=   435;
  428.    ERROR_VIO_INVALID_HANDLE        : constant :=   436;
  429.    ERROR_VIO_ILLEGAL_DURING_LOCK   : constant :=   437;
  430.    ERROR_VIO_INVALID_LENGTH        : constant :=   438;
  431.    ERROR_KBD_INVALID_HANDLE        : constant :=   439;
  432.    ERROR_KBD_NO_MORE_HANDLE        : constant :=   440;
  433.    ERROR_KBD_CANNOT_CREATE_KCB     : constant :=   441;
  434.    ERROR_KBD_CODEPAGE_LOAD_INCOMPL : constant :=   442;
  435.    ERROR_KBD_INVALID_CODEPAGE_ID   : constant :=   443;
  436.    ERROR_KBD_NO_CODEPAGE_SUPPORT   : constant :=   444;
  437.    ERROR_KBD_FOCUS_REQUIRED        : constant :=   445;
  438.    ERROR_KBD_FOCUS_ALREADY_ACTIVE  : constant :=   446;
  439.    ERROR_KBD_KEYBOARD_BUSY         : constant :=   447;
  440.    ERROR_KBD_INVALID_CODEPAGE      : constant :=   448;
  441.    ERROR_KBD_UNABLE_TO_FOCUS       : constant :=   449;
  442.    ERROR_SMG_SESSION_NON_SELECT    : constant :=   450;
  443.    ERROR_SMG_SESSION_NOT_FOREGRND  : constant :=   451;
  444.    ERROR_SMG_SESSION_NOT_PARENT    : constant :=   452;
  445.    ERROR_SMG_INVALID_START_MODE    : constant :=   453;
  446.    ERROR_SMG_INVALID_RELATED_OPT   : constant :=   454;
  447.    ERROR_SMG_INVALID_BOND_OPTION   : constant :=   455;
  448.    ERROR_SMG_INVALID_SELECT_OPT    : constant :=   456;
  449.    ERROR_SMG_START_IN_BACKGROUND   : constant :=   457;
  450.    ERROR_SMG_INVALID_STOP_OPTION   : constant :=   458;
  451.    ERROR_SMG_BAD_RESERVE           : constant :=   459;
  452.    ERROR_SMG_PROCESS_NOT_PARENT    : constant :=   460;
  453.    ERROR_SMG_INVALID_DATA_LENGTH   : constant :=   461;
  454.    ERROR_SMG_NOT_BOUND             : constant :=   462;
  455.    ERROR_SMG_RETRY_SUB_ALLOC       : constant :=   463;
  456.    ERROR_KBD_DETACHED              : constant :=   464;
  457.    ERROR_VIO_DETACHED              : constant :=   465;
  458.    ERROR_MOU_DETACHED              : constant :=   466;
  459.    ERROR_VIO_FONT                  : constant :=   467;
  460.    ERROR_VIO_USER_FONT             : constant :=   468;
  461.    ERROR_VIO_BAD_CP                : constant :=   469;
  462.    ERROR_VIO_NO_CP                 : constant :=   470;
  463.    ERROR_VIO_NA_CP                 : constant :=   471;
  464.    ERROR_INVALID_CODE_PAGE         : constant :=   472;
  465.    ERROR_CPLIST_TOO_SMALL          : constant :=   473;
  466.    ERROR_CP_NOT_MOVED              : constant :=   474;
  467.    ERROR_MODE_SWITCH_INIT          : constant :=   475;
  468.    ERROR_CODE_PAGE_NOT_FOUND       : constant :=   476;
  469.    ERROR_UNEXPECTED_SLOT_RETURNED  : constant :=   477;
  470.    ERROR_SMG_INVALID_TRACE_OPTION  : constant :=   478;
  471.    ERROR_VIO_INTERNAL_RESOURCE     : constant :=   479;
  472.    ERROR_VIO_SHELL_INIT            : constant :=   480;
  473.    ERROR_SMG_NO_HARD_ERRORS        : constant :=   481;
  474.    ERROR_CP_SWITCH_INCOMPLETE      : constant :=   482;
  475.    ERROR_VIO_TRANSPARENT_POPUP     : constant :=   483;
  476.    ERROR_CRITSEC_OVERFLOW          : constant :=   484;
  477.    ERROR_CRITSEC_UNDERFLOW         : constant :=   485;
  478.    ERROR_VIO_BAD_RESERVE           : constant :=   486;
  479.    ERROR_INVALID_ADDRESS           : constant :=   487;
  480.    ERROR_ZERO_SELECTORS_REQUESTED  : constant :=   488;
  481.    ERROR_NOT_ENOUGH_SELECTORS_AVA  : constant :=   489;
  482.    ERROR_INVALID_SELECTOR          : constant :=   490;
  483.    ERROR_SMG_INVALID_PROGRAM_TYPE  : constant :=   491;
  484.    ERROR_SMG_INVALID_PGM_CONTROL   : constant :=   492;
  485.    ERROR_SMG_INVALID_INHERIT_OPT   : constant :=   493;
  486.    ERROR_VIO_EXTENDED_SG           : constant :=   494;
  487.    ERROR_VIO_NOT_PRES_MGR_SG       : constant :=   495;
  488.    ERROR_VIO_SHIELD_OWNED          : constant :=   496;
  489.    ERROR_VIO_NO_MORE_HANDLES       : constant :=   497;
  490.    ERROR_VIO_SEE_ERROR_LOG         : constant :=   498;
  491.    ERROR_VIO_ASSOCIATED_DC         : constant :=   499;
  492.    ERROR_KBD_NO_CONSOLE            : constant :=   500;
  493.    ERROR_MOUSE_NO_CONSOLE          : constant :=   501;
  494.    ERROR_MOUSE_INVALID_HANDLE      : constant :=   502;
  495.    ERROR_SMG_INVALID_DEBUG_PARMS   : constant :=   503;
  496.    ERROR_KBD_EXTENDED_SG           : constant :=   504;
  497.    ERROR_MOU_EXTENDED_SG           : constant :=   505;
  498.    ERROR_SMG_INVALID_ICON_FILE     : constant :=   506;
  499.    ERROR_TRC_PID_NON_EXISTENT      : constant :=   507;
  500.    ERROR_TRC_COUNT_ACTIVE          : constant :=   508;
  501.    ERROR_TRC_SUSPENDED_BY_COUNT    : constant :=   509;
  502.    ERROR_TRC_COUNT_INACTIVE        : constant :=   510;
  503.    ERROR_TRC_COUNT_REACHED         : constant :=   511;
  504.    ERROR_NO_MC_TRACE               : constant :=   512;
  505.    ERROR_MC_TRACE                  : constant :=   513;
  506.    ERROR_TRC_COUNT_ZERO            : constant :=   514;
  507.    ERROR_SMG_TOO_MANY_DDS          : constant :=   515;
  508.    ERROR_SMG_INVALID_NOTIFICATION  : constant :=   516;
  509.    ERROR_LF_INVALID_FUNCTION       : constant :=   517;
  510.    ERROR_LF_NOT_AVAIL              : constant :=   518;
  511.    ERROR_LF_SUSPENDED              : constant :=   519;
  512.    ERROR_LF_BUF_TOO_SMALL          : constant :=   520;
  513.    ERROR_LF_BUFFER_CORRUPTED       : constant :=   521;
  514.    ERROR_LF_BUFFER_FULL            : constant :=   521;
  515.    ERROR_LF_INVALID_DAEMON         : constant :=   522;
  516.    ERROR_LF_INVALID_RECORD         : constant :=   522;
  517.    ERROR_LF_INVALID_TEMPL          : constant :=   523;
  518.    ERROR_LF_INVALID_SERVICE        : constant :=   523;
  519.    ERROR_LF_GENERAL_FAILURE        : constant :=   524;
  520.    ERROR_LF_INVALID_ID             : constant :=   525;
  521.    ERROR_LF_INVALID_HANDLE         : constant :=   526;
  522.    ERROR_LF_NO_ID_AVAIL            : constant :=   527;
  523.    ERROR_LF_TEMPLATE_AREA_FULL     : constant :=   528;
  524.    ERROR_LF_ID_IN_USE              : constant :=   529;
  525.    ERROR_MOU_NOT_INITIALIZED       : constant :=   530;
  526.    ERROR_MOUINITREAL_DONE          : constant :=   531;
  527.    ERROR_DOSSUB_CORRUPTED          : constant :=   532;
  528.    ERROR_MOUSE_CALLER_NOT_SUBSYS   : constant :=   533;
  529.    ERROR_ARITHMETIC_OVERFLOW       : constant :=   534;
  530.    ERROR_TMR_NO_DEVICE             : constant :=   535;
  531.    ERROR_TMR_INVALID_TIME          : constant :=   536;
  532.    ERROR_PVW_INVALID_ENTITY        : constant :=   537;
  533.    ERROR_PVW_INVALID_ENTITY_TYPE   : constant :=   538;
  534.    ERROR_PVW_INVALID_SPEC          : constant :=   539;
  535.    ERROR_PVW_INVALID_RANGE_TYPE    : constant :=   540;
  536.    ERROR_PVW_INVALID_COUNTER_BLK   : constant :=   541;
  537.    ERROR_PVW_INVALID_TEXT_BLK      : constant :=   542;
  538.    ERROR_PRF_NOT_INITIALIZED       : constant :=   543;
  539.    ERROR_PRF_ALREADY_INITIALIZED   : constant :=   544;
  540.    ERROR_PRF_NOT_STARTED           : constant :=   545;
  541.    ERROR_PRF_ALREADY_STARTED       : constant :=   546;
  542.    ERROR_PRF_TIMER_OUT_OF_RANGE    : constant :=   547;
  543.    ERROR_PRF_TIMER_RESET           : constant :=   548;
  544.    ERROR_VDD_LOCK_USEAGE_DENIED    : constant :=   639;
  545.    ERROR_TIMEOUT                   : constant :=   640;
  546.    ERROR_VDM_DOWN                  : constant :=   641;
  547.    ERROR_VDM_LIMIT                 : constant :=   642;
  548.    ERROR_VDD_NOT_FOUND             : constant :=   643;
  549.    ERROR_INVALID_CALLER            : constant :=   644;
  550.    ERROR_PID_MISMATCH              : constant :=   645;
  551.    ERROR_INVALID_VDD_HANDLE        : constant :=   646;
  552.    ERROR_VLPT_NO_SPOOLER           : constant :=   647;
  553.    ERROR_VCOM_DEVICE_BUSY          : constant :=   648;
  554.    ERROR_VLPT_DEVICE_BUSY          : constant :=   649;
  555.    ERROR_NESTING_TOO_DEEP          : constant :=   650;
  556.    ERROR_VDD_MISSING               : constant :=   651;
  557.    ERROR_BIDI_INVALID_LENGTH       : constant :=   671;
  558.    ERROR_BIDI_INVALID_INCREMENT    : constant :=   672;
  559.    ERROR_BIDI_INVALID_COMBINATION  : constant :=   673;
  560.    ERROR_BIDI_INVALID_RESERVED     : constant :=   674;
  561.    ERROR_BIDI_INVALID_EFFECT       : constant :=   675;
  562.    ERROR_BIDI_INVALID_CSDREC       : constant :=   676;
  563.    ERROR_BIDI_INVALID_CSDSTATE     : constant :=   677;
  564.    ERROR_BIDI_INVALID_LEVEL        : constant :=   678;
  565.    ERROR_BIDI_INVALID_TYPE_SUPPORT : constant :=   679;
  566.    ERROR_BIDI_INVALID_ORIENTATION  : constant :=   680;
  567.    ERROR_BIDI_INVALID_NUM_SHAPE    : constant :=   681;
  568.    ERROR_BIDI_INVALID_CSD          : constant :=   682;
  569.    ERROR_BIDI_NO_SUPPORT           : constant :=   683;
  570.    NO_ERROR_BIDI_RW_INCOMPLETE     : constant :=   684;
  571.    ERROR_IMP_INVALID_PARM          : constant :=   691;
  572.    ERROR_IMP_INVALID_LENGTH        : constant :=   692;
  573.    MSG_HPFS_DISK_ERROR_WARN        : constant :=   693;
  574.    ERROR_MON_BAD_BUFFER            : constant :=   730;
  575.    ERROR_MODULE_CORRUPTED          : constant :=   731;
  576.    ERROR_SM_OUTOF_SWAPFILE         : constant :=  1477;
  577.    ERROR_LF_TIMEOUT                : constant :=  2055;
  578.    ERROR_LF_SUSPEND_SUCCESS        : constant :=  2057;
  579.    ERROR_LF_RESUME_SUCCESS         : constant :=  2058;
  580.    ERROR_LF_REDIRECT_SUCCESS       : constant :=  2059;
  581.    ERROR_LF_REDIRECT_FAILURE       : constant :=  2060;
  582.    ERROR_SWAPPER_NOT_ACTIVE        : constant := 32768;
  583.    ERROR_INVALID_SWAPID            : constant := 32769;
  584.    ERROR_IOERR_SWAP_FILE           : constant := 32770;
  585.    ERROR_SWAP_TABLE_FULL           : constant := 32771;
  586.    ERROR_SWAP_FILE_FULL            : constant := 32772;
  587.    ERROR_CANT_INIT_SWAPPER         : constant := 32773;
  588.    ERROR_SWAPPER_ALREADY_INIT      : constant := 32774;
  589.    ERROR_PMM_INSUFFICIENT_MEMORY   : constant := 32775;
  590.    ERROR_PMM_INVALID_FLAGS         : constant := 32776;
  591.    ERROR_PMM_INVALID_ADDRESS       : constant := 32777;
  592.    ERROR_PMM_LOCK_FAILED           : constant := 32778;
  593.    ERROR_PMM_UNLOCK_FAILED         : constant := 32779;
  594.    ERROR_PMM_MOVE_INCOMPLETE       : constant := 32780;
  595.    ERROR_UCOM_DRIVE_RENAMED        : constant := 32781;
  596.    ERROR_UCOM_FILENAME_TRUNCATED   : constant := 32782;
  597.    ERROR_UCOM_BUFFER_LENGTH        : constant := 32783;
  598.    ERROR_MON_CHAIN_HANDLE          : constant := 32784;
  599.    ERROR_MON_NOT_REGISTERED        : constant := 32785;
  600.    ERROR_SMG_ALREADY_TOP           : constant := 32786;
  601.    ERROR_PMM_ARENA_MODIFIED        : constant := 32787;
  602.    ERROR_SMG_PRINTER_OPEN          : constant := 32788;
  603.    ERROR_PMM_SET_FLAGS_FAILED      : constant := 32789;
  604.    ERROR_INVALID_DOS_DD            : constant := 32790;
  605.    ERROR_BLOCKED                   : constant := 32791;
  606.    ERROR_NOBLOCK                   : constant := 32792;
  607.    ERROR_INSTANCE_SHARED           : constant := 32793;
  608.    ERROR_NO_OBJECT                 : constant := 32794;
  609.    ERROR_PARTIAL_ATTACH            : constant := 32795;
  610.    ERROR_INCACHE                   : constant := 32796;
  611.    ERROR_SWAP_IO_PROBLEMS          : constant := 32797;
  612.    ERROR_CROSSES_OBJECT_BOUNDARY   : constant := 32798;
  613.    ERROR_LONGLOCK                  : constant := 32799;
  614.    ERROR_SHORTLOCK                 : constant := 32800;
  615.    ERROR_UVIRTLOCK                 : constant := 32801;
  616.    ERROR_ALIASLOCK                 : constant := 32802;
  617.    ERROR_ALIAS                     : constant := 32803;
  618.    ERROR_NO_MORE_HANDLES           : constant := 32804;
  619.    ERROR_SCAN_TERMINATED           : constant := 32805;
  620.    ERROR_TERMINATOR_NOT_FOUND      : constant := 32806;
  621.    ERROR_NOT_DIRECT_CHILD          : constant := 32807;
  622.    ERROR_DELAY_FREE                : constant := 32808;
  623.    ERROR_GUARDPAGE                 : constant := 32809;
  624.    ERROR_SWAPERROR                 : constant := 32900;
  625.    ERROR_LDRERROR                  : constant := 32901;
  626.    ERROR_NOMEMORY                  : constant := 32902;
  627.    ERROR_NOACCESS                  : constant := 32903;
  628.    ERROR_NO_DLL_TERM               : constant := 32904;
  629.    ERROR_CPSIO_CODE_PAGE_INVALID   : constant := 65026;
  630.    ERROR_CPSIO_NO_SPOOLER          : constant := 65027;
  631.    ERROR_CPSIO_FONT_ID_INVALID     : constant := 65028;
  632.    ERROR_CPSIO_INTERNAL_ERROR      : constant := 65033;
  633.    ERROR_CPSIO_INVALID_PTR_NAME    : constant := 65034;
  634.    ERROR_CPSIO_NOT_ACTIVE          : constant := 65037;
  635.    ERROR_CPSIO_PID_FULL            : constant := 65039;
  636.    ERROR_CPSIO_PID_NOT_FOUND       : constant := 65040;
  637.    ERROR_CPSIO_READ_CTL_SEQ        : constant := 65043;
  638.    ERROR_CPSIO_READ_FNT_DEF        : constant := 65045;
  639.    ERROR_CPSIO_WRITE_ERROR         : constant := 65047;
  640.    ERROR_CPSIO_WRITE_FULL_ERROR    : constant := 65048;
  641.    ERROR_CPSIO_WRITE_HANDLE_BAD    : constant := 65049;
  642.    ERROR_CPSIO_SWIT_LOAD           : constant := 65074;
  643.    ERROR_CPSIO_INV_COMMAND         : constant := 65077;
  644.    ERROR_CPSIO_NO_FONT_SWIT        : constant := 65078;
  645.    ERROR_ENTRY_IS_CALLGATE         : constant := 65079;
  646.  
  647. end System.OS2Lib.Errors;
  648.